home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / clean / sun3.lha / Sun3 / deltaC.dcl < prev    next >
Text File  |  1992-08-07  |  554b  |  22 lines

  1. SYSTEM MODULE deltaC;
  2.  
  3. ==    Version 0.8
  4.  
  5. ==
  6. ==    Character operations
  7. ==
  8.  
  9. RULE
  10.  
  11. ::    =C    !CHAR    !CHAR    ->    BOOL;    ==    true if arg1 equals arg2
  12. ::    <>C    !CHAR    !CHAR    ->    BOOL;    ==    true if arg1 not equals arg2
  13. ::    <C    !CHAR    !CHAR    ->    BOOL;    ==    true if arg1 is less the arg2
  14. ::    >C    !CHAR    !CHAR    ->    BOOL;    ==    true if arg1 is more then arg2
  15. ::    <=C    !CHAR    !CHAR    ->    BOOL;    ==    true if arg1 is less or equal to arg2
  16. ::    >=C    !CHAR    !CHAR    ->    BOOL;    ==    true if arg1 is more or equal to arg2
  17.  
  18. ::    CTOI    !CHAR        ->    INT;    ==    convert arg1 to INT 
  19. ::    CTOS    !CHAR        ->    STRING;    ==    transform arg1 to STRING
  20.  
  21.  
  22.